home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ IE Clear All.xpl < prev    next >
Text File  |  2000-08-26  |  1KB  |  58 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="5"
  3. "COUNT"="2"
  4. "UIPATH"="Internet\Internet Explorer\Clear"
  5. "NAME"="Clear Items"
  6. "VERSION"="1.32"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Clear typed URLs"
  9. "TEXT 2"="Clear Radio Links"
  10. "TEXT 3"="C"
  11. "TEXT 4"="D"
  12. "DESCRIPTION 1"="If you do not want that other people can see the items you have saved, click one of the buttons."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17. "COMMENT 2"="Thanks to CptSiskoX for the help."
  18.  
  19. sP="HKCU\Software\Microsoft\Internet Explorer\TypedURLs\"
  20.  
  21. sP2a="HKCU\Software\Microsoft\MediaPlayer\Radio\MRUList\"
  22. sP2b="HKCU\Software\Microsoft\MediaPlayer\Radio\MRUList\Radio_Station_Count"
  23.  
  24. Sub Plugin_Initialize 
  25. End Sub
  26.  
  27. Sub Plugin_CheckData(ElementIndex)
  28. End Sub
  29.  
  30. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  31.  if ElementIndex=1 then 
  32.     i=RegEnumValues(sp)
  33.     for l=1 to i
  34.         Call RegDeleteValue(sp & RegEnumElement(l))
  35.     Next
  36.  
  37.     Call MsgInformation("Typed URLs cleared")
  38.  end if
  39.  
  40.  
  41.  if ElementIndex=2 then 
  42.     i=RegEnumValues(sp2a)
  43.     for l=1 to i
  44.         Call RegDeleteValue(sp2a & RegEnumElement(l))
  45.     Next
  46.     Call RegWriteValue(sp2b,0,2)
  47.  
  48.  
  49.     Call MsgInformation("Radio links cleared")
  50.  end if
  51.  
  52.  
  53.  
  54. End Sub
  55.  
  56. Sub Plugin_Terminate 
  57. End Sub
  58.